home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / WebObjects / WebObjectsDoc_HTML / Reuse / ReusableComponentsEx / WosSource.wo / WosSource.wos < prev   
Encoding:
Text File  |  1996-02-23  |  280 b   |  20 lines

  1. ////////////////////////
  2. //  SourceSplitView
  3. //  by Charles Lloyd
  4. ////////////////////////
  5.  
  6.  
  7. persistent id componentName;
  8.  
  9. - setTitleString:aString
  10. {
  11.     return nil;
  12. }
  13.  
  14. - titleString
  15. {
  16.     id aString = [NSString stringWithFormat:@"%@.wos", 
  17.     componentName];
  18.     return aString;
  19. }
  20.